home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / xceedzip / STARTED.DPR < prev    next >
Text File  |  1999-04-26  |  617b  |  23 lines

  1. program Started;
  2. {==================================================================}
  3. { Description: Getting Started Sample Application                  }
  4. { Copyright:   ⌐ Copyright 1995-1999 Xceed Software Inc.           }
  5. {                All Rights Reserved.                              }
  6. {==================================================================}
  7.  
  8. uses
  9.   Forms,
  10.   Main in 'Main.pas' {frmMain};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.Initialize;
  16.   Application.CreateForm(TfrmMain, frmMain);
  17.  
  18.   Application.HintPause := 250;
  19.   Application.HintHidePause := 10000;
  20.  
  21.   Application.Run;
  22. end.
  23.